home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / vprobedates.sql < prev    next >
Text File  |  2000-05-12  |  174b  |  7 lines

  1. /*
  2. This view creates a list of all dates for which probing was performed.
  3. */
  4. create or replace view vprobedates as
  5. select distinct trunc(pdate) tpdate from probehist;
  6.  
  7.